home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Programming / Languages / XOR table < prev   
Encoding:
Text File  |  1986-05-13  |  1.7 KB  |  51 lines  |  [TEXT/ttxt]

  1. Follow the procedure in the How To Animate An Icon MacPainting.
  2.  
  3. A mask should consist of the EXCLUSIVE OR of the Un-Selected and Selected Icons.
  4.  
  5. Here's a Truth Table for XOR:
  6.  
  7.  
  8.         0    XOR   0    =  0
  9.         0    XOR   1    =  1        (A '1' is a dark pixel ("ON"))
  10.         1    XOR   0    =  1
  11.         1    XOR   1    =  0
  12.         
  13.       Un-selected   Selected  Mask
  14.    
  15. IE:  
  16. If the pixel is to be the SAME in the Un-selected and Selected Icons, the Mask
  17. pixel is white.
  18.  
  19. If pixels are DIFFERENT between the Un-selected and the Selected Icons, the Mask
  20. pixel is black.
  21.  
  22. By following these rules, a single click on an application Icon can bring out 
  23. your initials, a different view of the same icon, or almost anything that will 
  24. fit in the 32 x 32 grid.  Your mask will wind up looking pretty garbled, but with 
  25. careful attention it will work out.
  26.   
  27. (Note:  of course, things get screwed up with there is another pattern 
  28. overlaid on the highlighted resultant.  Therefore, things can begin to look 
  29. pretty bad whenever the disk is ejected (dimmed icons in disk window) or the 
  30. icon is loose upon the DeskTop!)
  31.   
  32. If you review the instructions the the How To Make Animated Icons MacPainting,
  33. you will see that they result in a Half-Mask:  The Truth Table resulting from
  34. this procedure is:
  35.  
  36.  
  37.         0    XOR   0    =  0
  38.         0    XOR   1    =  1        (A '1' is a dark pixel ("ON"))
  39.         1    XOR   0    =  0
  40.         1    XOR   1    =  0
  41.         
  42.       Un-selected   Selected  Mask
  43.  
  44. Hmm.  Well, the easy way is to repeat the procedure, this time swapping the
  45. places taken by the Un-Selected and Selected Masks.  This will result in a second
  46. half-mask.  Make sure there is a hole in the frames surrounding the half-masks,
  47. and simply overlay one on top of the other, and you've got an almost-perfect
  48. EOR mask.
  49.  
  50.  
  51.